a6a144ab11a9b78e02e9d8fa45264e3cadd0ca2a,src/services/org/opennms/netmgt/poller/FtpMonitor.java,FtpMonitor,poll,#NetworkInterface#Map#,140
Before Change
serviceStatus = ServiceMonitor.SERVICE_AVAILABLE;
// Store response time in RRD
if (responseTime >= 0 && rrdPath != null)
this.updateRRD(m_rrdInterface, rrdPath, ipv4Addr, dsName, responseTime);
}
// Special Case: Also want to accept the following ERROR message
// generated by some FTP servers following a QUIT command without
After Change
serviceStatus = ServiceMonitor.SERVICE_AVAILABLE;
// Store response time in RRD
if (responseTime >= 0 && rrdPath != null)
this.updateRRD(m_rrdInterface, rrdPath, ipv4Addr, dsName, responseTime, pkg);
}
// Special Case: Also want to accept the following ERROR message
// generated by some FTP servers following a QUIT command without